home *** CD-ROM | disk | FTP | other *** search
/ CD Concept 6 / CD Concept 06.iso / mac / UTILITAIRE / Little Smalltalk v3.1.4 / C Source / Sources / CGraphicsPane.cp < prev    next >
Text File  |  1994-10-16  |  925b  |  25 lines

  1. //=============================================================================
  2. //    Little Smalltalk, version 3
  3. //    Written by Tim Budd, Oregon State University, July 1988
  4. //
  5. //    Symantec Think Class Library interface code 
  6. //        ⌐Julian Barkway, August 1994 , all rights reserved.
  7. //
  8. //    CGraphicsPane.cp
  9. //    ----------------
  10. //    This class implements a graphics pane as a sub-class of CPicture.
  11. //=============================================================================
  12.  
  13. #include "CGraphicsPane.h"
  14.  
  15.  
  16. //={OVERRIDE}==================================================================
  17. // Initialise a shiny new graphics pane object.
  18. //=============================================================================
  19. void CGraphicsPane::IGraphicsPane (CView *encl, CBureaucrat *super, 
  20.                                SizingOption hSizing, SizingOption vSizing)
  21. {
  22.     IPicture       (encl, super, 1, 1, 0, 0, hSizing, vSizing);
  23.     FitToEnclosure (TRUE, TRUE);
  24. }
  25.